home *** CD-ROM | disk | FTP | other *** search
/ .net (Turkey) 1998 March / .net Internet Dergisi - CD 5.iso / mac / netCD41 / PC16.DIR / 00120_Script_120 < prev    next >
Text File  |  1997-12-08  |  363b  |  16 lines

  1. on enterFrame
  2.   repeat with n = 30 to 48
  3.     if rollover(n) then
  4.       if not the puppet of sprite n then
  5.         puppetSprite n, TRUE
  6.         set the member of sprite n to the number of the member of sprite n +1
  7.       end if
  8.     else
  9.       puppetSprite n, FALSE
  10.     end if
  11.   end repeat
  12. end
  13.  
  14. on exitFrame
  15.   if soundBusy(1) then go to the frame
  16. end